From d974adaff433dcd58fd4bcaaf450f93b3ad485b7 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 22 Oct 2008 06:59:48 +0000 Subject: [PATCH] Set minimum width for TablePager tables to 80%. It's really annoying when they're about a sixth of the screen width, and grow and shrink on the slightest change to their contents. --- includes/DefaultSettings.php | 2 +- skins/monobook/main.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 5c56e2d26e..6607e4d37c 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1385,7 +1385,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '181'; +$wgStyleVersion = '182'; # Server-side caching: diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 0bf1c3ba0e..8bd925254a 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1461,6 +1461,7 @@ tr.sv-space td { display: none; } - remove line wrapping for all td and th, set background color - restore line wrapping for the last two table cells (description and size) */ +.TablePager { min-width: 80%; } .TablePager_nav a { text-decoration: none; } .TablePager { border-collapse: collapse; } .TablePager, .TablePager td, .TablePager th { -- 2.20.1